home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / jovept1.arc / GCSEC.ASM < prev    next >
Assembly Source File  |  1985-05-30  |  384b  |  26 lines

  1. ;gcsec.asm
  2.  
  3.     include    model.h
  4.     include    prologue.h
  5.  
  6.     public    gcsec
  7.  
  8. if    @bigmodel
  9. gcsec    proc    far
  10.     mov    ah,2ch
  11.     int    21h
  12.     mov    ax,dx
  13.     ret
  14. else
  15. gcsec    proc near
  16.     mov    ah,2ch
  17.     int    21h
  18.     mov    ax,dx
  19.     ret
  20. endif
  21. gcsec    endp
  22.  
  23.     include    epilogue.h
  24.  
  25.     end
  26.